home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 05-13.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  255b  |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. Mode = FGgetmode
  6. FGsetmode 4
  7.  
  8. FGdefcolor 0, 1
  9. FGdefcolor 255, 1
  10.  
  11. FGsetcolor 0
  12. FGtext "0", 1
  13. FGsetcolor 1
  14. FGtext " 1", 2
  15. FGsetcolor 255
  16. FGtext " 255", 4
  17. FGwaitkey
  18.  
  19. FGsetmode Mode
  20. FGreset
  21.  
  22. END
  23.